home *** CD-ROM | disk | FTP | other *** search
- # SpamAssassin basic config file
- #
- # Please don't modify this file as your changes will be overwritten with
- # the next update. Use @@LOCAL_RULES_DIR@@/local.cf instead.
- # See 'perldoc Mail::SpamAssassin::Conf' for details.
- #
- # This program is free software; you can redistribute it and/or modify
- # it under the terms of either the Artistic License or the GNU General
- # Public License as published by the Free Software Foundation; either
- # version 1 of the License, or (at your option) any later version.
- #
- # See the file "License" in the top level of the SpamAssassin source
- # distribution for more details.
- #
- ###########################################################################
-
- require_version @@VERSION@@
-
- ###########################################################################
-
- body BAYES_00 eval:check_bayes('0.00', '0.01')
- body BAYES_01 eval:check_bayes('0.01', '0.10')
- body BAYES_10 eval:check_bayes('0.10', '0.20')
- body BAYES_20 eval:check_bayes('0.20', '0.30')
- body BAYES_30 eval:check_bayes('0.30', '0.40')
-
- # note: tread carefully around 0.5... the Bayesian classifier
- # will use that for anything it's unsure about, or if it's untrained.
- body BAYES_40 eval:check_bayes('0.40', '0.44')
- body BAYES_44 eval:check_bayes('0.44', '0.4999')
- body BAYES_50 eval:check_bayes('0.5001', '0.56')
- body BAYES_56 eval:check_bayes('0.56', '0.60')
-
- body BAYES_60 eval:check_bayes('0.60', '0.70')
- body BAYES_70 eval:check_bayes('0.70', '0.80')
- body BAYES_80 eval:check_bayes('0.80', '0.90')
- body BAYES_90 eval:check_bayes('0.90', '0.99')
- body BAYES_99 eval:check_bayes('0.99', '1.00')
-
- tflags BAYES_00 nice learn
- tflags BAYES_01 nice learn
- tflags BAYES_10 nice learn
- tflags BAYES_20 nice learn
- tflags BAYES_30 nice learn
- tflags BAYES_40 nice learn
- tflags BAYES_44 nice learn
- tflags BAYES_50 learn
- tflags BAYES_56 learn
- tflags BAYES_60 learn
- tflags BAYES_70 learn
- tflags BAYES_80 learn
- tflags BAYES_90 learn
- tflags BAYES_99 learn
-
- describe BAYES_00 Bayesian classifier says spam probability is 0 to 1%
- describe BAYES_01 Bayesian classifier says spam probability is 1 to 10%
- describe BAYES_10 Bayesian classifier says spam probability is 10 to 20%
- describe BAYES_20 Bayesian classifier says spam probability is 20 to 30%
- describe BAYES_30 Bayesian classifier says spam probability is 30 to 40%
- describe BAYES_40 Bayesian classifier says spam probability is 40 to 44%
- describe BAYES_44 Bayesian classifier says spam probability is 44 to 50%
- describe BAYES_50 Bayesian classifier says spam probability is 50 to 56%
- describe BAYES_56 Bayesian classifier says spam probability is 56 to 60%
- describe BAYES_60 Bayesian classifier says spam probability is 60 to 70%
- describe BAYES_70 Bayesian classifier says spam probability is 70 to 80%
- describe BAYES_80 Bayesian classifier says spam probability is 80 to 90%
- describe BAYES_90 Bayesian classifier says spam probability is 90 to 99%
- describe BAYES_99 Bayesian classifier says spam probability is 99 to 100%
-
-